google.golang.org/grpc/internal/transport.outStream.bytesOutStanding (field)

6 uses

	google.golang.org/grpc/internal/transport (current package)
		controlbuf.go#L232: 	bytesOutStanding int
		controlbuf.go#L592: 		str.bytesOutStanding -= int(w.increment)
		controlbuf.go#L593: 		if strQuota := int(l.oiws) - str.bytesOutStanding; strQuota > 0 && str.state == waitingOnStreamQuota {
		controlbuf.go#L926: 	if strQuota := int(l.oiws) - str.bytesOutStanding; strQuota <= 0 { // stream-level flow control.
		controlbuf.go#L968: 	str.bytesOutStanding += size
		controlbuf.go#L985: 	} else if int(l.oiws)-str.bytesOutStanding <= 0 { // Ran out of stream quota.